type net/http.timeoutError

8 uses

	net/http (current package)
		client.go#L735: 				err = &timeoutError{err.Error() + " (Client.Timeout exceeded while awaiting headers)"}
		client.go#L977: 		err = &timeoutError{err.Error() + " (Client.Timeout or context cancellation while reading body)"}
		transport.go#L2635: type timeoutError struct {
		transport.go#L2639: func (e *timeoutError) Error() string     { return e.err }
		transport.go#L2640: func (e *timeoutError) Timeout() bool     { return true }
		transport.go#L2641: func (e *timeoutError) Temporary() bool   { return true }
		transport.go#L2642: func (e *timeoutError) Is(err error) bool { return err == context.DeadlineExceeded }
		transport.go#L2644: var errTimeout error = &timeoutError{"net/http: timeout awaiting response headers"}